|
|
c**0 发帖数: 9331 | 3 [求购]Label ready HP CP1525nw to C0 @ 225 |
|
c**0 发帖数: 9331 | 4 [求购]Label ready HP CP1525nw to C0 @ 225 |
|
e******i 发帖数: 106 | 5 是最新的一道题,我题目都没有看懂 >_<|||
题目有点长,有耐心的同学就慢慢看,我有问题的地方我用《 》quote
“Juggle Fest
Description:
Many developers here at Yodle are avid jugglers. To celebrate their prowess
we are organizing a Yodle Open JuggleFest, but we need your help planning it
. There will be thousands of participants split into teams. Each team will
attempt to complete a juggling circuit consisting of several tricks. Each
circuit emphasizes different aspects of juggling, requiring hand to eye
coordination (H), endurance (E) and pizza... 阅读全帖 |
|
b********d 发帖数: 393 | 6 看了50遍但是对要求还是不解,求看得懂的解释一下。
要求写一段程序给所有juggler根据个人的意向,个人(H,E,P)的特点和每个组对(
H, E,P)值的要求最佳化分组。但是这个最佳化的条件我没看懂呀,尤其是这句话:In
fact we want to match jugglers to circuits such that no juggler could
switch to a circuit that they prefer more than the one they are assigned to
and be a better fit for that circuit than one of the other jugglers assigned
to it.
看不懂呀。。。
谁给中文解释一下。拜谢了先。。
全文如下:
2 - Juggle Fest
Many developers here are avid jugglers. To celebrate their prowess we are
organizing a Yodle Open JuggleFest, b... 阅读全帖 |
|
f****4 发帖数: 1359 | 7 找到一个对的O(N)的解法
http://www.ocf.berkeley.edu/~wwu/cgi-bin/yabb/YaBB.cgi?board=ri
This is a pretty good puzzle. You can actually find the cutoff and a
description of exactly which pairs are in the solution in less than O(N)
time, but outputting all the solutions takes O(N) time, so it doesn't help
you overall. This won't be much of a hint, but finding the cutoff point can
be done in O(sqrt(N)*log2N) time. Forgive me for not writing code, but this
gets pretty nitty-gritty in spots.
I think of the pro... 阅读全帖 |
|
f****4 发帖数: 1359 | 8 找到一个对的O(N)的解法
http://www.ocf.berkeley.edu/~wwu/cgi-bin/yabb/YaBB.cgi?board=ri
This is a pretty good puzzle. You can actually find the cutoff and a
description of exactly which pairs are in the solution in less than O(N)
time, but outputting all the solutions takes O(N) time, so it doesn't help
you overall. This won't be much of a hint, but finding the cutoff point can
be done in O(sqrt(N)*log2N) time. Forgive me for not writing code, but this
gets pretty nitty-gritty in spots.
I think of the pro... 阅读全帖 |
|
w*****x 发帖数: 116 | 9 say a neg-feed is given to input X(t) from output Y(t)
as C2*Y(t), where Y(t) = C1*X'(t) + C0,
X'(t) is the output of adder at input, as
X'(t) = X(t) - C2*Y(t), substitute Y(t) = C1*X'(t) + C0,
we have
X'(t) = (X(t) - C0*C2) / (1+C1*C2),
so the final transfer function is
Y(t) = C1*X'(t) + C0
= C1*(X(t) - C0*C2)/(1+C1*C2) + C0
Thinking C1 C2 are both posstive factors, this system
output Y(t) is always bounded and thus stable.
我觉得这里还是有点问题
1. 传递函数是一个比值,没有输入量了。Y(t) = C1*X'(t) + C0
= C1*(X(t) - C0*C2 |
|
|
|
|
z*****n 发帖数: 7639 | 13 Remember: if a system doesn't contain laplacian multiplier s,
it is a pure proportional system and always stable.
I think your feed-back equation is not correct:
say a neg-feed is given to input X(t) from output Y(t)
as C2*Y(t), where Y(t) = C1*X'(t) + C0,
X'(t) is the output of adder at input, as
X'(t) = X(t) - C2*Y(t), substitute Y(t) = C1*X'(t) + C0,
we have
X'(t) = (X(t) - C0*C2) / (1+C1*C2),
so the final transfer function is
Y(t) = C1*X'(t) + C0
= C1*(X(t) - C0*C2)/(1+C1*C2) + C0
Thin |
|
|
|
j******2 发帖数: 362 | 16 150上面的5.3题,算c0的时候是
c=n;
c0=0;
while(((c&1)==0)&&(c!=0))
{
c0++;
c>>=1;
}
为何要查c!=0?这难道不是(c&1)==0的subset吗?而且后面还要检查c0+c1==0,题目说
好n是positive integer,如果一开始就令n<=0 return -1,是否就可省去(c&1)==0和
c0+c1==0的两处检查了? |
|
|
|
|
|
w*****x 发帖数: 116 | 21 有一个系统,输入是温度T, 输出是光学的信号Y。其输入关系为Y=C1*T+C0
我想问问
1. 这个系统的传递函数是 G(s)=C1(系统是一个比例放大?)是不是如果计算传递函数
的话,必须满足输入为0时候, 输出也为0的条件?所以C0必须为0?若C0不为0,是不
是要重新定义输出量y'=y-C0?
2. 现在在输出信号中增加一项-C2*T,我想把这项放在负反馈的线路上,形成最后的输
出是
Y=C1*T-C2*T+C0。
可我计算此时闭环传递函数是: G(s)/(1-G(s)/C2)=C1*C2/(C1-C2),发现若C1=C2,这
个传递函数是无穷大?这样理解对么?
3. 无穷大的系统稳定么?
谢谢了,
很多年没动过控制的书了,只记得一些概念。谢谢指点。 |
|
s****s 发帖数: 2108 | 22 已知的yk,zk 和 后面的yk,zk不一样啊。
相当于有很多个黑箱子车,用c_k 标志,
固定c_k, 一直用一个黑箱子,得到的y_k, z_k 收敛到0
现在我有y0,z0, c0, 经过黑箱子c0,固定c0,经过c0黑箱子的一部分, 中途我
换到c1箱子车,没有一直用到底,固定c1(把c0换成了c1),然
后从c1箱子里面走一段时间,中途又换到c2,。。。 |
|
w*****x 发帖数: 116 | 23 有一个系统,输入是温度T, 输出是光学的信号Y。其输入关系为Y=C1*T+C0
我想问问
1. 这个系统的传递函数是 G(s)=C1(系统是一个比例放大?)是不是如果计算传递函数
的话,必须满足输入为0时候, 输出也为0的条件?所以C0必须为0?若C0不为0,是不
是要重新定义输出量y'=y-C0?
2. 现在在输出信号中增加一项-C2*T,我想把这项放在负反馈的线路上,形成最后的输
出是
Y=C1*T-C2*T+C0。
可我计算此时闭环传递函数是: G(s)/(1-G(s)/C2)=C1*C2/(C1-C2),发现若C1=C2,这
个传递函数是无穷大?这样理解对么?
3. 无穷大的系统稳定么?
谢谢了,
很多年没动过控制的书了,只记得一些概念。谢谢指点。 |
|
|
|
a****t 发帖数: 7049 | 26 为什么不同地区的民俗音乐,即使用了同样的五音或七音音阶,即使用了同样的标准调
律,听上去味道还是可以不同?
为了回答这个问题,我们要重审上一篇说的音阶,在上一篇里,我故意把音阶定义为一
组无序的音值,因为着重考虑的是它们之间的音程关系。事实上按传统说法,音阶是有
序的,并且默认参数里必然有个起音音值。比如大调和小调音阶就是同一个七音音阶+
不同起音。那么在七音音阶里除了这两个起音还有若干个别的,分别导出早期西方音乐
的各种“调式”(mode),意思是拿不同起音的音阶爬来爬去就可以搞出不同味道的旋
律。如果读者在此察觉到一丝混乱,欲追问究竟什么使调式和调式不同,我很欣慰,因
为我亵渎地宣称一下,我并不认为有调式这样东西。调式说法给予音阶起音的重要性是
另一个概念的副产品,这另一个更根本的概念就是“调性”(tonality),也是后来和
声音乐着重探索的东西。
5。《调性》
乐曲的音色自由度携载信息的方式是通过泛音结构的和谐与不和谐来调制惊喜。一首曲
子里,泛音结构是在几个规模和层次同时展开的,小规模的有和声,大规模的则有整曲
或整段落的泛音基调,此基调就是调性(tonality)!比如,... 阅读全帖 |
|
f******y 发帖数: 696 | 27 我用excel帮你验算了一下,貌似需要满足c>0
否则原命题不成立。
你想想,如果对于某个常数c0,满足log(phi(x))-log(phi(x+c0))是concave的,那么
反过来,log(phi(x+c0))-log(phi(x))就是convex的。也就是说,对于常数c1=-c0来
说,log(phi(x))-log(phi(x+c1))是convex的。 |
|
|
w*****x 发帖数: 116 | 29 我现在的系统,其输入关系为Y=C1*T+C0。
我想把这个系统改造成一个负反馈闭环系统,使得总的输出是Y=C1*T-C2*T+C0。
这里C1,C0 是正的实数,C2是可以调整的实数。
我发现若C1=C2,输出与输入无关了,稳定在C0。想问这样的系统稳定么。
还有,我的那个传递函数对么/
谢谢 |
|
w*****x 发帖数: 116 | 30 =c1*t-c2*t+c0=(c1-c2)*t+c0, when c1=c2, y=c0.
Maybe you meant something else?
对的。这样的系统是个稳定么?特别的当when c1=c2, 是,
输出y=c0. 此时的传递函数是0么? |
|
o*******w 发帖数: 349 | 31 我是这样理解的。
假设 u=c0 + c1*x, + c2*z + c3*x^2 + c4*z^2 +...
or z=c0 + c2*u +a2*x + ...
or x=c0 + c1*u +b2*z +...
我们不妨设c0=0, i.e.
u= c1*x, + c2*z + c3*x^2 + c4*z^2 +... (1)
or z= c2*u +a2*x +a3*x^2 +d*u^2+ ... (2)
or x= c1*u +b2*z +b3*x^2 +e*u^2+ ... (3)
不失一般性在零点(0,0), 下面的方程仅仅要求 c1=c2 -- 由(1)
∂u(0,0)/∂z = 1/(1+u)*∂u(0,0)/∂x (4)
而
∂z(x=0,u)/∂u = (1+u)*∂x(z=0,u)/∂u (5)
除了c1=c2,还要求,d=e 等等。
总而言之,(5) 更强,满足... 阅读全帖 |
|
|
y*h 发帖数: 25423 | 33 来源:财新《新世纪》作者:于宁谷永强
“7·23”事故怎样祸起信号?高铁信号系统寡头供货者为何疲于奔命?决策者现
在何以进退两难?
马骋死得很突然。
中国铁路通信信号集团公司(下称通号集团)的总经理、业内视为中国高铁信号技
术的带头人,死在了“7·23”甬台温动车追尾事故一月祭的前一天——8月22日。
当天上午,马骋正在深圳,与前来检查广深港客运专线的国务院高速铁路安全大检
查组成员一起开会。据多位知情人士称,刚讲完话,他就倒在桌上。
马骋没有心脏病史,却突发心脏病去世。熟悉的同业为之唏嘘:“压力过大,责任
也过大。”在他死之前,通号集团正面临前所未有的信任危机。下辖的北京全路通信信
号研究设计院(下称通号院)正是甬台温信号系统的设计者,通号集团则是集成商。
在7月23日晚,一个致命的简单软件设计错误,导致甬台温的列车控制中心(下称
列控中心)不能实时采集外部数据,并向调度集中系统(下称CTC)传输了错误信息。
D301次动车的车载自动控制设备因此接到错误信号,仍按正常速度行驶,与前车D3115
次动车追尾,终酿成一场40人死亡的特大事故。
事故发生以来一个月,通号集团成为众矢之的。作... 阅读全帖 |
|
|
|
B*********e 发帖数: 86 | 36 ([email protected]/1935)
发帖_BiggeyIssue_mitbbs_2017-11-16 ~ [email protected][email protected][email protected]
[email protected][email protected][email protected]
([email protected]/2313)
发帖_BiggeyIssue_mitbbs_2017-11-16 ~ [email protected][email protected][email protected]
[email protected][email protected]
([email protected])
发帖[email protected][email protected]_
@1902-.docx
([email protected])
发帖[email ... 阅读全帖 |
|
|
Z*****Z 发帖数: 723 | 38 Given an array, find the longest subarray which the sum of the subarray less
or equal then the given MaxSum.
int[] FindMaxSumArray(int[] array, int maxsum)
for example, given array: {1, -2, 4, -2, 6, 7}
maxsum=7
the result would be: {1,-2, 4, -2, 6}
感觉用两个指针一前一后扫一遍数组就行了?求证。。。
出处:
http://www.mitbbs.com/bbsann2/life.faq/JobHunting/17/D128425435
2821_2.C0/%C0%B4%B5%C0%C4%D1%D2%BB%B5%E3%B5%C4%CC%E2 |
|
t********e 发帖数: 143 | 39 Use 2 D table for DP, first dimension is index, second dimension is color.
color is c0, c1, c2. Formula is
A[i][c2] = (min {A[i-1][c0], A[i-1][c1]}) + n[i][c2];
A[i][c1] = ...
A[i][c0] = ... |
|
a*****9 发帖数: 805 | 40 20km,
AC必然相遇在甲乙中点m
AB 相遇点C0,由于c0->m A耗时1小时,距离2km,所以AB相遇时,B走了 1/2全程+2km.
同时由于c0->m A耗时1小时,距离2km,所以在AB相遇时, BC距离是4km.
BC距离由其速度差1km/h产生,所以AB相遇时他们已用4小时
B走了 4x3=12km, 1/2甲乙距离为 12-2=10km, 甲乙距离为20km。
作对了没? |
|
|
|
|
|
|
|
|
g*******1 发帖数: 8758 | 48 恩,刚才也写错了,那是三只老鼠喂一天。。。
1:A0 B0 C0 D0 E0 对应死法 A- B- C- D- E-
2: A0 B0 C0 D0 E1 <-> A- B- C- D- Ex
3: A0 B0 C0 D0 E2
比如如果这个死法:
A- Bx CX D- Ex
就能知道配方是
A0 B1 C2 D0 E1 |
|